home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part2 / 12980 < prev    next >
Encoding:
Text File  |  1996-08-05  |  28.1 KB  |  625 lines

  1. Newsgroups: comp.lang.c,comp.lang.c.moderated,comp.answers,news.answers
  2. Path: new-news.sprintlink.net!eskimo!scs
  3. From: scs@eskimo.com (Steve Summit)
  4. Subject: comp.lang.c FAQ list Table of Contents
  5. X-Nntp-Posting-Host: eskimo.com
  6. Message-ID: <1996Apr03.1146.scs.0003@eskimo.com>
  7. Followup-To: poster
  8. Summary: questions only (answers elsewhere)
  9. Originator: scs@eskimo.com
  10. Sender: news@eskimo.com (News User Id)
  11. Reply-To: scs@eskimo.com
  12. X-Pgp-Signature: Version: 2.6
  13.     iQCSAwUBMWLUYN6sm4I1rmP1AQG6kQPnXHpTwwXcJXPZZg0WBcMnUe4ZYhdZ2zOa
  14.     zMvmaKLhFuWM//3pxmfyhKDpGKR4S+r9u/QpPKgZ34qTU/h0FZVILqpKw3FUs8CP
  15.     TA9CIHiWbHGdJ6f6OQ8Uxblx8C1mc4s5+Hsu41YB9i2pZBCnPpYLWZ8zwIlf/5Us
  16.     JFnNiwE=
  17.     =FE7S
  18. X-Archive-Name: C-faq/toc
  19. Organization: only when absolutely necessary
  20. X-Version: 3.3
  21. Date: Wed, 3 Apr 1996 19:46:41 GMT
  22. X-Last-Modified: March 21, 1996
  23. Approved: news-answers-request@MIT.Edu
  24. Expires: Fri, 3 May 1996 00:00:00 GMT
  25. X-Url: http://www.eskimo.com/~scs/C-faq.top/html
  26.  
  27. Archive-name: C-faq/toc
  28. Comp-lang-c-archive-name: C-FAQ-list.toc
  29. URL: http://www.eskimo.com/~scs/C-faq/top.html
  30.  
  31. [Last modified March 21, 1996 by scs.]
  32.  
  33. This article is a table of contents for the comp.lang.c frequently-asked
  34. questions (FAQ) list, listing the questions which the abridged and full
  35. versions of the FAQ list answer.  (Both lists answer all questions; the
  36. wordings of the questions in this article are taken from the abridged
  37. list.)
  38.  
  39. If you have only just come across this article, you will naturally be
  40. wondering where the lists which it indexes can be found.  The unabridged
  41. version is normally posted to comp.lang.c on the first of each month,
  42. and the abridged version twice per month, both with Expires: lines which
  43. should keep them around all month.  They can also be found in the
  44. newsgroups comp.answers and news.answers .  They are available for
  45. anonymous ftp from ftp.eskimo.com in directoru u/s/scs/C-faq/.
  46. Several sites archive news.answers postings and other FAQ lists,
  47. including comp.lang.c's: two sites are rtfm.mit.edu (directories
  48. pub/usenet/news.answers/C-faq/ and pub/usenet/comp.lang.c/ ) and
  49. ftp.uu.net (directory usenet/news.answers/C-faq/ ).  The archie
  50. server should help you find others; ask it to "find C-faq".
  51. A web version is at http://www.eskimo.com/~scs/C-faq/top.html .
  52. See the meta-FAQ list in news.answers for more information.
  53.  
  54. Section 1. Declarations and Initializations
  55. Section 2. Structures, Unions, and Enumerations
  56. Section 3. Expressions
  57. Section 4. Pointers
  58. Section 5. Null Pointers
  59. Section 6. Arrays and Pointers
  60. Section 7. Memory Allocation
  61. Section 8. Characters and Strings
  62. Section 9. Boolean Expressions and Variables
  63. Section 10. C Preprocessor
  64. Section 11. ANSI/ISO Standard C
  65. Section 12. Stdio
  66. Section 13. Library Functions
  67. Section 14. Floating Point
  68. Section 15. Variable-Length Argument Lists
  69. Section 16. Strange Problems
  70. Section 17. Style
  71. Section 18. Tools and Resources
  72. Section 19. System Dependencies
  73. Section 20. Miscellaneous
  74.  
  75. Section 1. Declarations and Initializations
  76. 1.1:    How do you decide which integer type to use?
  77. 1.4:    What should the 64-bit type on new, 64-bit machines be?
  78. 1.7:    What's the best way to declare and define global variables?
  79. 1.11:    What does extern mean in a function declaration?
  80. 1.12:    What's the auto keyword good for?
  81. 1.14:    I can't seem to define a linked list node which contains a
  82.     pointer to itself.
  83. 1.21:    How do I declare an array of N pointers to functions returning
  84.     pointers to functions returning pointers to characters?
  85. 1.22:    How can I declare a function that returns a pointer to a
  86.     function of its own type?
  87. 1.25:    My compiler is complaining about an invalid redeclaration of a
  88.     function, but I only define it once and call it once.
  89. 1.30:    What can I safely assume about the initial values of variables
  90.     which are not explicitly initialized?
  91. 1.31:    Why can't I initialize a local array with a string?
  92. 1.32:    What is the difference between char a[] = "string"; and
  93.     char *p = "string"; ?
  94. 1.34:    How do I initialize a pointer to a function?
  95.  
  96. Section 2. Structures, Unions, and Enumerations
  97. 2.1:    What's the difference between struct x1 { ... }; and
  98.     typedef struct { ... } x2; ?
  99. 2.2:    Why doesn't "struct x { ... }; x thestruct;" work?
  100. 2.3:    Can a structure contain a pointer to itself?
  101. 2.4:    What's the best way of implementing opaque (abstract) data types
  102.     in C?
  103. 2.6:    I came across some code that declared a structure with the last
  104.     member an array of one element, and then did some tricky
  105.     allocation to make it act like the array had several elements.
  106.     Is this legal or portable?
  107. 2.7:    I heard that structures could be assigned to variables and
  108.     passed to and from functions, but K&R1 says not.
  109. 2.8:    Why can't you compare structures?
  110. 2.9:    How are structure passing and returning implemented?
  111. 2.10:    Can I pass constant values to functions which accept structure
  112.     arguments?
  113. 2.11:    How can I read/write structures from/to data files?
  114. 2.12:    How can I turn off structure padding?
  115. 2.13:    Why does sizeof report a larger size than I expect for a
  116.     structure type?
  117. 2.14:    How can I determine the byte offset of a field within a
  118.     structure?
  119. 2.15:    How can I access structure fields by name at run time?
  120. 2.18:    I have a program which works correctly, but dumps core after it
  121.     finishes.  Why?
  122. 2.20:    Can I initialize unions?
  123. 2.22:    What is the difference between an enumeration and a set of
  124.     preprocessor #defines?
  125. 2.24:    Is there an easy way to print enumeration values symbolically?
  126.  
  127. Section 3. Expressions
  128. 3.1:    Why doesn't the code "a[i] = i++;" work?
  129. 3.2:    Under my compiler, the code "int i = 7;
  130.     printf("%d\n", i++ * i++);" prints 49.  Regardless of the order
  131.     of evaluation, shouldn't it print 56?
  132. 3.3:    How could the code [CENSORED] ever give 7?
  133. 3.4:    Don't precedence and parentheses dictate order of evaluation?
  134. 3.5:    But what about the && and || operators?
  135. 3.8:    What's a "sequence point"?
  136. 3.9:    So given a[i] = i++; we don't know which cell of a[] gets
  137.     written to, but i does get incremented by one.
  138. 3.12:    If I'm not using the value of the expression, should I use i++
  139.     or ++i to increment a variable?
  140. 3.14:    Why doesn't the code "int a = 1000, b = 1000;
  141.     long int c = a * b;" work?
  142. 3.16:    Can I use ?: on the left-hand side of an assignment expression?
  143.  
  144. Section 4. Pointers
  145. 4.2:    What's wrong with "char *p; *p = malloc(10);"?
  146. 4.3:    Does *p++ increment p, or what it points to?
  147. 4.5:    I want to use a char * pointer to step over some ints.  Why
  148.     doesn't "((int *)p)++;" work?
  149. 4.8:    I have a function which accepts, and is supposed to initialize,
  150.     a pointer, but the pointer in the caller remains unchanged.
  151. 4.9:    Can I use a void ** pointer to pass a generic pointer to a
  152.     function by reference?
  153. 4.10:    I have a function which accepts a pointer to an int.  How can I
  154.     pass a constant like 5 to it?
  155. 4.11:    Does C even have "pass by reference"?
  156. 4.12:    I've seen different methods used for calling functions via
  157.     pointers.
  158.  
  159. Section 5. Null Pointers
  160. 5.1:    What is this infamous null pointer, anyway?
  161. 5.2:    How do I get a null pointer in my programs?
  162. 5.3:    Is the abbreviated pointer comparison "if(p)" to test for non-
  163.     null pointers valid?
  164. 5.4:    What is NULL and how is it #defined?
  165. 5.5:    How should NULL be defined on a machine which uses a nonzero bit
  166.     pattern as the internal representation of a null pointer?
  167. 5.6:    If NULL were defined as "((char *)0)," wouldn't that make
  168.     function calls which pass an uncast NULL work?
  169. 5.9:    If NULL and 0 are equivalent as null pointer constants, which
  170.     should I use?
  171. 5.10:    But wouldn't it be better to use NULL, in case the value of NULL
  172.     changes?
  173. 5.12:    I use the preprocessor macro "#define Nullptr(type) (type *)0"
  174.     to help me build null pointers of the correct type.
  175. 5.13:    This is strange.  NULL is guaranteed to be 0, but the null
  176.     pointer is not?
  177. 5.14:    Why is there so much confusion surrounding null pointers?
  178. 5.15:    I'm confused.  I just can't understand all this null pointer
  179.     stuff.
  180. 5.16:    Given all the confusion surrounding null pointers, wouldn't it
  181.     be easier simply to require them to be represented internally by
  182.     zeroes?
  183. 5.17:    Seriously, have any actual machines really used nonzero null
  184.     pointers?
  185. 5.20:    What does a run-time "null pointer assignment" error mean?
  186.  
  187. Section 6. Arrays and Pointers
  188. 6.1:    I had the definition char a[6] in one source file, and in
  189.     another I declared extern char *a.  Why didn't it work?
  190. 6.2:    But I heard that char a[] was identical to char *a.
  191. 6.3:    So what is meant by the "equivalence of pointers and arrays" in
  192.     C?
  193. 6.4:    Why are array and pointer declarations interchangeable as
  194.     function formal parameters?
  195. 6.7:    How can an array be an lvalue, if you can't assign to it?
  196. 6.8:    What is the real difference between arrays and pointers?
  197. 6.9:    Someone explained to me that arrays were really just constant
  198.     pointers.
  199. 6.11:    I came across some "joke" code containing the "expression"
  200.     5["abcdef"] .  How can this be legal C?
  201. 6.12:    What's the difference between array and &array?
  202. 6.13:    How do I declare a pointer to an array?
  203. 6.14:    How can I set an array's size at compile time?
  204. 6.15:    How can I declare local arrays of a size matching a passed-in
  205.     array?
  206. 6.16:    How can I dynamically allocate a multidimensional array?
  207. 6.17:    Can I simulate a non-0-based array with a pointer?
  208. 6.18:    My compiler complained when I passed a two-dimensional array to
  209.     a function expecting a pointer to a pointer.
  210. 6.19:    How do I write functions which accept two-dimensional arrays
  211.     when the "width" is not known at compile time?
  212. 6.20:    How can I use statically- and dynamically-allocated
  213.     multidimensional arrays interchangeably when passing them to
  214.     functions?
  215. 6.21:    Why doesn't sizeof properly report the size of an array which is
  216.     a parameter to a function?
  217.  
  218. Section 7. Memory Allocation
  219. 7.1:    Why doesn't the code "char *answer; gets(answer);" work?
  220. 7.2:    I can't get strcat() to work.  I tried "char *s3 =
  221.     strcat(s1, s2);" but I got strange results.
  222. 7.3:    But the man page for strcat() says that it takes two char *'s as
  223.     arguments.  How am I supposed to know to allocate things?
  224. 7.5:    I have a function that is supposed to return a string, but when
  225.     it returns to its caller, the returned string is garbage.
  226. 7.6:    Why am I getting "warning: assignment of pointer from integer
  227.     lacks a cast" for calls to malloc()?
  228. 7.7:    Why does some code carefully cast the values returned by malloc
  229.     to the pointer type being allocated?
  230. 7.8:    Why does so much code leave out the multiplication by
  231.     sizeof(char) when allocating strings?
  232. 7.14:    I've heard that some operating systems don't actually allocate
  233.     malloc()'ed memory until the program tries to use it.  Is this
  234.     legal?
  235. 7.16:    I'm allocating a large array for some numeric work, but malloc()
  236.     is acting strangely.
  237. 7.17:    I've got 8 meg of memory in my PC.  Why can I only seem to
  238.     malloc() 640K or so?
  239. 7.19:    My program is crashing, apparently somewhere down inside malloc.
  240. 7.20:    You can't use dynamically-allocated memory after you free it,
  241.     can you?
  242. 7.21:    Why isn't a pointer null after calling free()?
  243. 7.22:    When I call malloc() to allocate memory for a local pointer, do
  244.     I have to explicitly free() it?
  245. 7.23:    When I free a dynamically-allocated structure containing
  246.     pointers, do I have to free each subsidiary pointer first?
  247. 7.24:    Must I free allocated memory before the program exits?
  248. 7.25:    Why doesn't my program's memory usage go down when I free
  249.     memory?
  250. 7.26:    How does free() know how many bytes to free?
  251. 7.27:    So can I query the malloc package to find out how big an
  252.     allocated block is?
  253. 7.30:    Is it legal to pass a null pointer as the first argument to
  254.     realloc()?
  255. 7.31:    What's the difference between calloc() and malloc()?
  256. 7.32:    What is alloca() and why is its use discouraged?
  257.  
  258. Section 8. Characters and Strings
  259. 8.1:    Why doesn't "strcat(string, '!');" work?
  260. 8.2:    Why won't the test if(string == "value") correctly compare
  261.     string against the value?
  262. 8.3:    Why can't I assign strings to character arrays?
  263. 8.6:    How can I get the numeric (character set) value corresponding to
  264.     a character?
  265. 8.9:    Why is sizeof('a') not 1?
  266.  
  267. Section 9. Boolean Expressions
  268. 9.1:    What is the right type to use for Boolean values in C?
  269. 9.2:    What if a built-in logical or relational operator "returns"
  270.     something other than 1?
  271. 9.3:    Is if(p), where p is a pointer, valid?
  272.  
  273. Section 10. C Preprocessor
  274. 10.2:    I've got some cute preprocessor macros that let me write C code
  275.     that looks more like Pascal.  What do y'all think?
  276. 10.3:    How can I write a generic macro to swap two values?
  277. 10.4:    What's the best way to write a multi-statement macro?
  278. 10.6:    What are .h files and what should I put in them?
  279. 10.7:    Is it acceptable for one header file to #include another?
  280. 10.8:    Where are header ("#include") files searched for?
  281. 10.9:    I'm getting strange syntax errors on the very first declaration
  282.     in a file, but it looks fine.
  283. 10.11:    Where can I get a copy of a missing header file?
  284. 10.12:    How can I construct preprocessor #if expressions which compare
  285.     strings?
  286. 10.13:    Does the sizeof operator work in preprocessor #if directives?
  287. 10.14:    Can I use an #ifdef in a #define line, to define something two
  288.     different ways?
  289. 10.15:    Is there anything like an #ifdef for typedefs?
  290. 10.16:    How can I use a preprocessor #if expression to detect
  291.     endianness?
  292. 10.18:    How can I preprocess some code to remove selected conditional
  293.     compilations, without preprocessing everything?
  294. 10.19:    How can I list all of the pre#defined identifiers?
  295. 10.20:    I have some old code that tries to construct identifiers with a
  296.     macro like "#define Paste(a, b) a/**/b", but it doesn't work any
  297.     more.
  298. 10.22:    What does the message "warning: macro replacement within a
  299.     string literal" mean?
  300. 10.23:    How can I use a macro argument inside a string literal in the
  301.     macro expansion?
  302. 10.25:    I've got this tricky preprocessing I want to do and I can't
  303.     figure out a way to do it.
  304. 10.26:    How can I write a macro which takes a variable number of
  305.     arguments?
  306.  
  307. Section 11. ANSI/ISO Standard C
  308. 11.1:    What is the "ANSI C Standard?"
  309. 11.2:    How can I get a copy of the Standard?
  310. 11.3:    My ANSI compiler is complaining about prototype mismatches for
  311.     parameters declared float.
  312. 11.4:    Can you mix old-style and new-style function syntax?
  313. 11.5:    Why does the declaration "extern f(struct x *p);" give me a
  314.     warning message?
  315. 11.8:    Why can't I use const values in initializers and array
  316.     dimensions?
  317. 11.9:    What's the difference between "const char *p" and
  318.     "char * const p"?
  319. 11.10:    Why can't I pass a char ** to a function which expects a
  320.     const char **?
  321. 11.12:    Can I declare main() as void, to shut off these annoying "main
  322.     returns no value" messages?
  323. 11.13:    But what about main()'s third argument, envp?
  324. 11.14:    I believe that declaring void main() can't fail, since I'm
  325.     calling exit() instead of returning.
  326. 11.15:    The book I've been using always uses void main().
  327. 11.16:    Is exit(status) truly equivalent to returning the same status
  328.     from main()?
  329. 11.17:    How do I get the ANSI "stringizing" preprocessing operator `#'
  330.     to stringize the macro's value instead of its name?
  331. 11.18:    What does the message "warning: macro replacement within a
  332.     string literal" mean?
  333. 11.19:    I'm getting strange syntax errors inside lines I've #ifdeffed
  334.     out.
  335. 11.20:    What are #pragmas ?
  336. 11.21:    What does "#pragma once" mean?
  337. 11.22:    Is char a[3] = "abc"; legal?
  338. 11.24:    Why can't I perform arithmetic on a void * pointer?
  339. 11.25:    What's the difference between memcpy() and memmove()?
  340. 11.26:    What should malloc(0) do?
  341. 11.27:    Why does the ANSI Standard not guarantee more than six case-
  342.     insensitive characters of external identifier significance?
  343. 11.29:    My compiler is rejecting the simplest possible test programs,
  344.     with all kinds of syntax errors.
  345. 11.30:    Why are some ANSI/ISO Standard library routines showing up as
  346.     undefined, even though I've got an ANSI compiler?
  347. 11.31:    Does anyone have a tool for converting old-style C programs to
  348.     ANSI C, or for automatically generating prototypes?
  349. 11.32:    Why won't frobozz-cc, which claims to be ANSI compliant, accept
  350.     this code?
  351. 11.33:    What's the difference between implementation-defined,
  352.     unspecified, and undefined behavior?
  353. 11.34:    I'm appalled that the ANSI Standard leaves so many issues
  354.     undefined.
  355. 11.35:    I just tried some allegedly-undefined code on an ANSI-conforming
  356.     compiler, and got the results I expected.
  357.  
  358. Section 12. Stdio
  359. 12.1:    What's wrong with the code "char c; while((c = getchar()) !=
  360.     EOF) ..."?
  361. 12.2:    Why won't the code "while(!feof(infp)) {
  362.     fgets(buf, MAXLINE, infp); fputs(buf, outfp); }" work?
  363. 12.4:    My program's prompts and intermediate output don't always show
  364.     up on the screen.
  365. 12.5:    How can I read one character at a time, without waiting for the
  366.     RETURN key?
  367. 12.6:    How can I print a '%' character with printf?
  368. 12.9:    How can printf() use %f for type double, if scanf() requires
  369.     %lf?
  370. 12.10:    How can I implement a variable field width with printf?
  371. 12.11:    How can I print numbers with commas separating the thousands?
  372. 12.12:    Why doesn't the call scanf("%d", i) work?
  373. 12.13:    Why doesn't the code "double d; scanf("%f", &d);" work?
  374. 12.15:    How can I specify a variable width in a scanf() format string?
  375. 12.17:    When I read numbers from the keyboard with scanf "%d\n", it
  376.     seems to hang until I type one extra line of input.
  377. 12.18:    I'm reading a number with scanf %d and then a string with
  378.     gets(), but the compiler seems to be skipping the call to
  379.     gets()!
  380. 12.19:    I'm re-prompting the user if scanf() fails, but sometimes it
  381.     seems to go into an infinite loop.
  382. 12.20:    Why does everyone say not to use scanf()?  What should I use
  383.     instead?
  384. 12.21:    How can I tell how much destination buffer space I'll need for
  385.     an arbitrary sprintf call?  How can I avoid overflowing the
  386.     destination buffer with sprintf()?
  387. 12.23:    Why does everyone say not to use gets()?
  388. 12.24:    Why does errno contain ENOTTY after a call to printf()?
  389. 12.25:    What's the difference between fgetpos/fsetpos and ftell/fseek?
  390. 12.26:    Will fflush(stdin) flush unread characters from the standard
  391.     input stream?
  392. 12.30:    I'm trying to update a file in place, by using fopen mode "r+",
  393.     but it's not working.
  394. 12.33:    How can I redirect stdin or stdout from within a program?
  395. 12.34:    Once I've used freopen(), how can I get the original stream
  396.     back?
  397. 12.38:    How can I read a binary data file properly?
  398.  
  399. Section 13. Library Functions
  400. 13.1:    How can I convert numbers to strings?
  401. 13.2:    Why does strncpy() not always write a '\0'?
  402. 13.5:    Why do some versions of toupper() act strangely if given an
  403.     upper-case letter?
  404. 13.6:    How can I split up a string into whitespace-separated fields?
  405. 13.7:    I need some code to do regular expression and wildcard matching.
  406. 13.8:    I'm trying to sort an array of strings with qsort(), using
  407.     strcmp() as the comparison function, but it's not working.
  408. 13.9:    Now I'm trying to sort an array of structures, but the compiler
  409.     is complaining that the function is of the wrong type for
  410.     qsort().
  411. 13.10:    How can I sort a linked list?
  412. 13.11:    How can I sort more data than will fit in memory?
  413. 13.12:    How can I get the time of day in a C program?
  414. 13.13:    How can I convert a struct tm or a string into a time_t?
  415. 13.14:    How can I perform calendar manipulations?
  416. 13.15:    I need a random number generator.
  417. 13.16:    How can I get random integers in a certain range?
  418. 13.17:    Each time I run my program, I get the same sequence of numbers
  419.     back from rand().
  420. 13.18:    I need a random true/false value, so I'm just taking rand() % 2,
  421.     but it's alternating 0, 1, 0, 1, 0...
  422. 13.20:    How can I generate random numbers with a normal or Gaussian
  423.     distribution?
  424. 13.24:    I'm trying to port this old program.  Why do I get "undefined
  425.     external" errors for some library functions?
  426. 13.25:    I get errors due to library functions being undefined even
  427.     though I #include the right header files.
  428. 13.26:    I'm still getting errors due to library functions being
  429.     undefined, even though I'm requesting the right libraries.
  430. 13.28:    What does it mean when the linker says that _end is undefined?
  431.  
  432. Section 14. Floating Point
  433. 14.1:    When I set a float variable to 3.1, why is printf() printing it
  434.     as 3.0999999?
  435. 14.2:    Why is sqrt(144.) giving me crazy numbers?
  436. 14.3:    I keep getting "undefined: sin" compilation errors.
  437. 14.4:    My floating-point calculations are acting strangely and giving
  438.     me different answers on different machines.
  439. 14.5:    What's a good way to check for "close enough" floating-point
  440.     equality?
  441. 14.6:    How do I round numbers?
  442. 14.7:    Where is C's exponentiation operator?
  443. 14.8:    The pre-#defined constant M_PI seems to be missing from
  444.     <math.h>.
  445. 14.9:    How do I test for IEEE NaN and other special values?
  446. 14.11:    What's a good way to implement complex numbers in C?
  447. 14.12:    I'm looking for some mathematical library code.
  448. 14.13:    I'm having trouble with a Turbo C program which crashes and says
  449.     something like "floating point formats not linked."
  450.  
  451. Section 15. Variable-Length Argument Lists
  452. 15.1:    I heard that you have to #include <stdio.h> before calling
  453.     printf().  Why?
  454. 15.2:    How can %f be used for both float and double arguments in
  455.     printf()?
  456. 15.3:    Why don't function prototypes guard against mismatches in
  457.     printf()'s arguments?
  458. 15.4:    How can I write a function that takes a variable number of
  459.     arguments?
  460. 15.5:    How can I write a function that takes a format string and a
  461.     variable number of arguments, like printf(), and passes them to
  462.     printf() to do most of the work?
  463. 15.6:    How can I write a function analogous to scanf(), that calls
  464.     scanf() to do most of the work?
  465. 15.7:    I have a pre-ANSI compiler, without <stdarg.h>.  What can I do?
  466. 15.8:    How can I discover how many arguments a function was actually
  467.     called with?
  468. 15.9:    My compiler isn't letting me declare a function that accepts
  469.     *only* variable arguments.
  470. 15.10:    Why isn't "va_arg(argp, float)" working?
  471. 15.11:    I can't get va_arg() to pull in an argument of type pointer-to-
  472.     function.
  473. 15.12:    How can I write a function which takes a variable number of
  474.     arguments and passes them to some other function ?
  475. 15.13:    How can I call a function with an argument list built up at run
  476.     time?
  477.  
  478. Section 16. Strange Problems
  479. 16.3:    This program crashes before it even runs!
  480. 16.4:    I have a program that seems to run correctly, but then crashes
  481.     as it's exiting.
  482. 16.5:    This program runs perfectly on one machine, but I get weird
  483.     results on another.
  484. 16.6:    Why does the code "char *p = "hello, world!"; p[0] = 'H';"
  485.     crash?
  486. 16.8:    What does "Segmentation violation" mean?
  487.  
  488. Section 17. Style
  489. 17.1:    What's the best style for code layout in C?
  490. 17.3:    Is the code "if(!strcmp(s1, s2))" good style?
  491. 17.4:    Why do some people write if(0 == x) instead of if(x == 0)?
  492. 17.5:    I came across some code that puts a (void) cast before each call
  493.     to printf().  Why?
  494. 17.8:    What is "Hungarian Notation"?  Is it worthwhile?
  495. 17.9:    Where can I get the "Indian Hill Style Guide" and other coding
  496.     standards?
  497. 17.10:    Some people say that goto's are evil and that I should never use
  498.     them.  Isn't that a bit extreme?
  499.  
  500. Section 18. Tools and Resources
  501. 18.1:    I'm looking for C development tools (cross-reference generators,
  502.     code beautifiers, etc.).
  503. 18.2:    How can I track down these pesky malloc problems?
  504. 18.3:    What's a free or cheap C compiler I can use?
  505. 18.4:    I just typed in this program, and it's acting strangely.  Can
  506.     you see anything wrong with it?
  507. 18.5:    How can I shut off the "warning: possible pointer alignment
  508.     problem" message which lint gives me for each call to malloc()?
  509. 18.7:    Where can I get an ANSI-compatible lint?
  510. 18.8:    Don't ANSI function prototypes render lint obsolete?
  511. 18.9:    Are there any C tutorials or other resources on the net?
  512. 18.10:    What's a good book for learning C?
  513. 18.13:    Where can I find the sources of the standard C libraries?
  514. 18.14:    I need code to parse and evaluate expressions.
  515. 18.15:    Where can I get a BNF or YACC grammar for C?
  516. 18.15a:    Does anyone have a C compiler test suite I can use?
  517. 18.16:    Where and how can I get copies of all these freely distributable
  518.     programs?
  519.  
  520. Section 19. System Dependencies
  521. 19.1:    How can I read a single character from the keyboard without
  522.     waiting for the RETURN key?
  523. 19.2:    How can I find out how many characters are available for
  524.     reading, or do a non-blocking read?
  525. 19.3:    How can I display a percentage-done indication that updates
  526.     itself in place, or show one of those "twirling baton" progress
  527.     indicators?
  528. 19.4:    How can I clear the screen, or print things in inverse video, or
  529.     move the cursor?
  530. 19.5:    How do I read the arrow keys?  What about function keys?
  531. 19.6:    How do I read the mouse?
  532. 19.7:    How can I do serial ("comm") port I/O?
  533. 19.8:    How can I direct output to the printer?
  534. 19.9:    How do I send escape sequences to control a terminal or other
  535.     device?
  536. 19.10:    How can I do graphics?
  537. 19.11:    How can I check whether a file exists?
  538. 19.12:    How can I find out the size of a file, prior to reading it in?
  539. 19.13:    How can a file be shortened in-place without completely clearing
  540.     or rewriting it?
  541. 19.14:    How can I insert or delete a line in the middle of a file?
  542. 19.15:    How can I recover the file name given an open file descriptor?
  543. 19.16:    How can I delete a file?
  544. 19.17:    What's wrong with the call fopen("c:\newdir\file.dat", "r")?
  545. 19.18:    How can I increase the allowable number of simultaneously open
  546.     files?
  547. 19.20:    How can I read a directory in a C program?
  548. 19.22:    How can I find out how much memory is available?
  549. 19.23:    How can I allocate arrays or structures bigger than 64K?
  550. 19.24:    What does the error message "DGROUP exceeds 64K" mean?
  551. 19.25:    How can I access memory located at a certain address?
  552. 19.27:    How can I invoke another program from within a C program?
  553. 19.30:    How can I invoke another program and trap its output?
  554. 19.31:    How can my program discover the complete pathname to the
  555.     executable from which it was invoked?
  556. 19.32:    How can I automatically locate a program's configuration files
  557.     in the same directory as the executable?
  558. 19.33:    How can a process change an environment variable in its caller?
  559. 19.36:    How can I read in an object file and jump to routines in it?
  560. 19.37:    How can I implement a delay, or time a user's response, with sub-
  561.     second resolution?
  562. 19.38:    How can I trap or ignore keyboard interrupts like control-C?
  563. 19.39:    How can I handle floating-point exceptions gracefully?
  564. 19.40:    How do I...  Use sockets?  Do networking?  Write client/server
  565.     applications?
  566. 19.40b:    How do I use BIOS calls?  How can I write ISR's?  How can I
  567.     create TSR's?
  568. 19.41:    But I can't use all these nonstandard, system-dependent
  569.     functions, because my program has to be ANSI compatible!
  570.  
  571. Section 20. Miscellaneous
  572. 20.1:    How can I return multiple values from a function?
  573. 20.3:    How do I access command-line arguments?
  574. 20.5:    How can I write data files which can be read on other machines
  575.     with different data formats?
  576. 20.6:    How can I call a function, given its name as a string?
  577. 20.8:    How can I implement sets or arrays of bits?
  578. 20.9:    How can I determine whether a machine's byte order is big-endian
  579.     or little-endian?
  580. 20.10:    How can I convert integers to binary or hexadecimal?
  581. 20.11:    Can I use base-2 constants (something like 0b101010)?
  582.     Is there a printf() format for binary?
  583. 20.12:    What is the most efficient way to count the number of bits which
  584.     are set in a value?
  585. 20.13:    How can I make my code more efficient?
  586. 20.14:    Are pointers really faster than arrays?  How much do function
  587.     calls slow things down?
  588. 20.17:    Is there a way to switch on strings?
  589. 20.18:    Is there a way to have non-constant case labels (i.e. ranges or
  590.     arbitrary expressions)?
  591. 20.19:    Are the outer parentheses in return statements really optional?
  592. 20.20:    Why don't C comments nest?  Are they legal inside quoted
  593.     strings?
  594. 20.24:    Why doesn't C have nested functions?
  595. 20.25:    How can I call FORTRAN (C++, BASIC, Pascal, Ada, LISP) functions
  596.     from C?
  597. 20.26:    Does anyone know of a program for converting Pascal or FORTRAN
  598.     to C?
  599. 20.27:    Can I use a C++ compiler to compile C code?
  600. 20.28:    I need to compare two strings for close, but not necessarily
  601.     exact, equality.
  602. 20.29:    What is hashing?
  603. 20.31:    How can I find the day of the week given the date?
  604. 20.32:    Will 2000 be a leap year?
  605. 20.34:    How do you write a program which produces its own source code as
  606.     its output?
  607. 20.35:    What is "Duff's Device"?
  608. 20.36:    When will the next Obfuscated C Code Contest be held?  How can I
  609.     get a copy of previous winning entries?
  610. 20.37:    What was the entry keyword mentioned in K&R1?
  611. 20.38:    Where does the name "C" come from, anyway?
  612. 20.39:    How do you pronounce "char"?
  613. 20.40:    Where can I get extra copies of this list?
  614.  
  615.                         Steve Summit
  616.                         scs@eskimo.com
  617.  
  618. This article is Copyright 1994-1996 by Steve Summit.
  619. Content from the book _C Programming FAQs: Frequently Asked Questions_
  620. is made available here by permission of the author and the publisher as
  621. a service to the community.  It is intended to complement the use of the
  622. published text and is protected by international copyright laws.  The
  623. content is made available here and may be accessed freely for personal
  624. use but may not be republished without permission.
  625.